2008-02-22 Dominic Lachowicz <domlachowicz@gmail.com>
* gdk-pixbuf/queryloaders.c (loader_sanity_check): It's perfectly acceptable
for a module to only support the save_to_callback() method if it marks itself
as WRITABLE
svn path=/trunk/; revision=19632
+2008-02-22 Dominic Lachowicz <domlachowicz@gmail.com>
+
+ * gdk-pixbuf/queryloaders.c (loader_sanity_check): It's perfectly acceptable
+ for a module to only support the save_to_callback() method if it marks itself
+ as WRITABLE
+
2008-02-16 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version
goto error;
}
- if ((info->flags & GDK_PIXBUF_FORMAT_WRITABLE) && !vtable->save)
+ if ((info->flags & GDK_PIXBUF_FORMAT_WRITABLE) && !(vtable->save || vtable->save_to_callback))
{
error = "loader claims to support saving but doesn't implement save";
goto error;